home *** CD-ROM | disk | FTP | other *** search
- ``Mark Webster`` WWIVlink #99 AT 17310
- Wednesday, December 8, 1993 9:21 pm
- 0R: net33: @4076 (via @4061) [06:25 12/10/93]
- 0R: net33: @4050 (via @4064) [05:33 12/10/93]
- 0R: net33: @4064 (via @1040) [05:10 12/10/93]
- 0R: net33: @1040 (via @2050) [23:38 12/09/93]
- 0R: net34: @2050 [21:21 12/09/93]
- 0R: net34: @2050 (via @1040) [20:16 12/09/93]
- 0R: net33: @1040 (via @1023) [21:42 12/09/93]
- 0R: net33: @1023 (via @1023) [17:12 12/09/93]
- 0R: net33: @3454 [16:31 12/09/93]
- 0R: net33: @13468 (via @314) [07:21 12/09/93]
- 0R: net33: @314 (via @17313) [06:40 12/09/93]
- 0R: net33: @17313 (via @17310) [07:23 12/09/93]
- 0R: net33: @17310 [21:23 12/08/93]
- ┌────────────────────────────────────────────────────────────────────────────┐
- │ Mod Name: MARK01.MOD Mod Authors: Mark Webster (1@NONE WWIV/IceNET) │
- │ Difficulty: ▓░░░░░░░░░ [08DEC93] (1@NONE FEARnet) │
- │ WWIV Version: 4.23 (1@NONE WWIVlink) │
- │ Files Affected: BBS.C (1@NONE TERRAnet) │
- │ Description: Prompts sysop if he is sure he wants to exit the BBS and also │
- │ asks if the SysOp wishes to take the phone off-hook. │
- ╞═────────────────────────────────────═╤═───────────────────────────────────═╡
- │ Programmer's Utopia (703)257-7524 14.4k 1.8 Gigs, nearly 2,500 programming │
- │ files online! │
- ╘═────────────────────────────────────═╧═───────────────────────────────────═╛
-
- ═[Disclaimer]═══════════════════════════════════════════════════════════════
-
- This mod works fine on my BBS and should do you no harm as well. However,
- if your system should blow up, or your house float away in a flood; I'm in
- no way responsible for these super-natural events.
-
- ═[Legend]═══════════════════════════════════════════════════════════════════
-
- /* ++ */ -- Mod add
- /* == */ -- Original code
- /* += */ -- Source code changed
-
- For your convience I've put the signs in comments so you don't have to worry
- about them!
-
- ═[MOD begins - Step 1]══════════════════════════════════════════════════════
-
- You know the drill, back up that source code, or comment out the original
- unchanged source code (which is probably the best way to do it)!
-
- ═[Step 2]═══════════════════════════════════════════════════════════════════
-
-
- Search for void getcaller(void)...
-
-
- void getcaller(void)
- . /* and several 10s of lines down! */
- .
- .
- /* == */ case 'Q':
- /* == */ outstr(get_string(1043));
- /* += */ if (yn()) { /* Mark mod#01 - change 08DEC93 */
- /* ++ */ outstr("Take phone off-hook?"); /* Mark mod#01 - add 08DEC93 */
- /* ++ */ if (yn()) /* Mark mod#01 - add 08DEC93 */
- /* ++ */ holdphone(1); /* Mark mod#01 - add 08DEC93 */
- /* ++ */ } /* Mark mod#01 - add 08DEC93 */
- /* += */ end_bbs(QUIT_LEVEL); /* Mark mod#01 - change 08DEC93 */
- /* ++ */ clrscrb(); /* Mark mod#01 - add 08DEC93 */
- /* == */ break;
- /* == */ case 27:
- /* == */ outstr(get_string(1043));
- /* += */ if (yn()) { /* Mark mod#01 - change 08DEC93 */
- /* ++ */ outstr("Take phone off-hook?"); /* Mark mod#01 - add 08DEC93 */
- /* ++ */ if (yn()) /* Mark mod#01 - add 08DEC93 */
- /* ++ */ holdphone(1); /* Mark mod#01 - add 08DEC93 */
- /* ++ */ } /* Mark mod#01 - add 08DEC93 */
- /* += */ end_bbs(QUIT_LEVEL); /* Mark mod#01 - change 08DEC93 */
- /* == */ clrscrb();
- /* == */ break;
-
- ═[EOF]════════════════════════════════════════════════════════════════════════